'宣言 Public Overloads Shared Function DeserializeObject(Of T)( _ ByVal strJson As System.String, _ Optional ByVal js As JsonSetting _ ) As T
public static T DeserializeObject<T>( System.string strJson, JsonSetting js )
パラメータ
- strJson
- The object to deserialize.
- js
- The JsonSetting used to deserialize the object. If this is null, default serialization settings will be used.
型パラメータ
- T
- The type of the object to deserialize to.
戻り値の型
The deserialized object from the JSON string.